home *** CD-ROM | disk | FTP | other *** search
- <!-----------------------------------------------------------
- This example illustrates use of the CFSILENT tag.
- ----------------------------------------------------------->
- <HTML>
- <HEAD>
- <TITLE>CFSILENT</TITLE>
- </HEAD>
-
- <BASEFONT FACE="Arial, Helvetica" SIZE=2>
- <BODY bgcolor="#FFFFD5">
-
- <H3>CFSILENT</H3>
-
- <!--- This example shows the use of CFSilent --->
-
- <CFSilent>
- <cfset a=100>
- <cfset b=99>
- <cfset c=b-a>
- <cfoutput>#c#</cfoutput>
- ...
- </CFSilent>
- <p>
- Even information within CFOUTPUT tags does not appear within
- the CFSILENT block.<BR>
- b-c = <cfoutput>#c#</cfoutput>
- </p>
- </BODY>
- </HTML>